footer {
    width: 100%;
    background-color: var(--destaques-rosa);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.texto__rodape {
    font-family: var(--fonte-titulo);
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    padding: 1.5rem 0.8rem;
    text-align: center;
}

.botao__rodape {
    align-content: center;
    background-image: linear-gradient(315deg, #b40465 0%, #b58ecc 74%);
    border: none;
    border-radius: 50%;
    fill: rgba(255, 255, 255, 0.877);
    filter: drop-shadow(0 0 0.2em rgba(255, 133, 155));
    height: 2.5rem;
    margin-right: 1rem;
    width: 2.5rem;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .rodape {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .botao__rodape{
        height: 2.5rem;
        margin-right: 1rem;
        width: 2.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .rodape {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .botao__rodape{
        height: 3rem;
        margin-right: 1rem;
        width: 3rem;
    }
    .texto__rodape {
        font-size: 1rem;
        padding: 1.8rem 1.3rem;
    }
}